home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / clang / beaut15.zip / BEAUTCPP.CFG < prev    next >
Text File  |  1994-11-14  |  5KB  |  88 lines

  1. ; This file contains configuration parameters that are used
  2. ; with in the Beaut.Exe program.
  3.  
  4. ; There are two types of parameter types : Boolean, and Integer.
  5. ; Boolean types can have only two valid values [On, Yes, or Off, No].
  6. ; Integer types can have a valid range of 0 - 500.
  7.  
  8. ;------------------------------------------------------------------------
  9. ; This parameter specifies how many lines separate between two
  10. ; functions.
  11. ;------------------------------------------------------------------------
  12.   function_spacing            = 4        ; Integer
  13.  
  14. ;------------------------------------------------------------------------
  15. ; Specifies whether to use tabs in indenting code.
  16. ;------------------------------------------------------------------------
  17.   use_tabs                    = no       ; Boolean
  18.  
  19. ;------------------------------------------------------------------------
  20. ; Specifies how many spaces to indent. This parameter is also used
  21. ; for tab indenting, as 1 tab may be worth 8 spaces if so desired. 
  22. ; This is parameter is used to help re-positioning of comments that
  23. ;------------------------------------------------------------------------
  24.   indent_spacing              = 4        ; Integer
  25.  
  26. ;------------------------------------------------------------------------
  27. ; Defines at what start position comments that have code on the
  28. ; same line will be placed.
  29. ;------------------------------------------------------------------------
  30.   comments_with_code          = 30       ; Integer
  31.  
  32. ;------------------------------------------------------------------------
  33. ; Defines at what start position comments with no code start.
  34. ;------------------------------------------------------------------------
  35.   comments_with_nocode        = 0        ; Integer
  36.                               
  37. ;------------------------------------------------------------------------
  38. ; Use this option to change non-ascii (non-printable) chars to
  39. ; octal notation if they lie within quotes. Either
  40. ; Ascii_Chars_Only, XOR Leave_Graphic_Chars parameters need to set
  41. ; a True value for this parameter to take effect.
  42. ;------------------------------------------------------------------------
  43.   NonAscii_Quotes_to_Octal    = yes      ; Boolean
  44.  
  45. ;------------------------------------------------------------------------
  46. ; Setting this parameter to yes will strip non-printable character
  47. ; from the source file, but leave any character that are IBM
  48. ; graphics alone. Any non-printable characters that lie within
  49. ; quotes will be transformed into octal/character notation, if
  50. ; NonAscii_Quotes_To_Octal parameter is set to True.
  51. ;------------------------------------------------------------------------
  52. ;  leave_graphic_chars        = no      ; Boolean
  53.  
  54. ;------------------------------------------------------------------------
  55. ; Setting this parameter to yes will strip any non-printable,
  56. ; non-ascii characters from the input file. Any non-printable
  57. ; characters that lie within quotes will be transformed into
  58. ; octal/character notation if NonAscii_Quotes_To_Octal is set to
  59. ; True. Comment out this parameter if you are using
  60. ; Leave_Graphic_Chars parameter, as this parameter will override
  61. ; it.
  62. ;------------------------------------------------------------------------
  63.    ascii_chars_only           = yes     ; Boolean
  64.  
  65. ;------------------------------------------------------------------------
  66. ; This parameter will place open braces on a new line after it's
  67. ; associated code if set on/yes. Else the brace will be place on
  68. ; next above line if possible, with it's code.
  69. ;------------------------------------------------------------------------
  70.   place_brace_on_new_line     = no      ; Boolean
  71.  
  72. ;------------------------------------------------------------------------
  73. ; This parameter will stop output from the program corrupting output
  74. ; that may exit from the program via the standard output.
  75. ; If this parameter is set ot off/no then no output is generated from
  76. ; the program, unless an error is encounted
  77. ;------------------------------------------------------------------------
  78.    program_output             = yes     ; Boolean
  79.    
  80.  
  81. ;------------------------------------------------------------------------
  82. ; Specifies what the intenal memory requires will be in size of the 
  83. ; line processing buffer. This essentially used only for open brace
  84. ; relocation in kernighan/ritchie style.
  85. ;------------------------------------------------------------------------
  86.   Queue_Buffer                = 10      ; Integer
  87.  
  88.